home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
source
/
docs
/
refex
/
ex42.pp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-01-01
|
193 b
|
13 lines
Program Example42;
{ Program to demonstrate the Move function. }
Var S1,S2 : String [30];
begin
S1:='Hello World !';
S2:='Bye, bye !';
Move (S1,S2,Sizeof(S1));
Writeln (S2);
end.